home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zcolor1.c < prev    next >
C/C++ Source or Header  |  1997-07-08  |  7KB  |  236 lines

  1. /* Copyright (C) 1993, 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zcolor1.c */
  20. /* Level 1 extended color operators */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "estack.h"
  25. #include "ialloc.h"
  26. #include "igstate.h"
  27. #include "iutil.h"
  28. #include "store.h"
  29. #include "gxfixed.h"
  30. #include "gxmatrix.h"
  31. #include "gzstate.h"
  32. #include "gxdevice.h"
  33. #include "gxcmap.h"
  34. #include "gscolor1.h"
  35. #include "gxcspace.h"
  36. #include "icolor.h"
  37. #include "iimage.h"
  38.  
  39. /* - currentblackgeneration <proc> */
  40. private int
  41. zcurrentblackgeneration(register os_ptr op)
  42. {    push(1);
  43.     *op = istate->black_generation;
  44.     return 0;
  45. }
  46.  
  47. /* - currentcmykcolor <cyan> <magenta> <yellow> <black> */
  48. private int
  49. zcurrentcmykcolor(register os_ptr op)
  50. {    float par[4];
  51.  
  52.     gs_currentcmykcolor(igs, par);
  53.     push(4);
  54.     make_floats(op - 3, par, 4);
  55.     return 0;
  56. }
  57.  
  58. /* - currentcolortransfer <redproc> <greenproc> <blueproc> <grayproc> */
  59. private int
  60. zcurrentcolortransfer(register os_ptr op)
  61. {    push(4);
  62.     op[-3] = istate->transfer_procs.colored.red;
  63.     op[-2] = istate->transfer_procs.colored.green;
  64.     op[-1] = istate->transfer_procs.colored.blue;
  65.     *op = istate->transfer_procs.colored.gray;
  66.     return 0;
  67. }
  68.  
  69. /* - currentundercolorremoval <proc> */
  70. private int
  71. zcurrentundercolorremoval(register os_ptr op)
  72. {    push(1);
  73.     *op = istate->undercolor_removal;
  74.     return 0;
  75. }
  76.  
  77. /* <proc> setblackgeneration - */
  78. private int
  79. zsetblackgeneration(register os_ptr op)
  80. {    int code;
  81.     check_proc(*op);
  82.     check_ostack(zcolor_remap_one_ostack - 1);
  83.     check_estack(1 + zcolor_remap_one_estack);
  84.     code = gs_setblackgeneration_remap(igs, gs_mapped_transfer, false);
  85.     if ( code < 0 )
  86.         return code;
  87.     istate->black_generation = *op;
  88.     pop(1);  op--;
  89.     push_op_estack(zcolor_remap_color);
  90.     return zcolor_remap_one(&istate->black_generation, op,
  91.                 igs->black_generation, igs,
  92.                 zcolor_remap_one_finish);
  93. }
  94.  
  95. /* <cyan> <magenta> <yellow> <black> setcmykcolor - */
  96. private int
  97. zsetcmykcolor(register os_ptr op)
  98. {    double par[4];
  99.     int code;
  100.  
  101.     if ( (code = num_params(op, 4, par)) < 0 ||
  102.          (code = gs_setcmykcolor(igs, par[0], par[1], par[2], par[3])) < 0
  103.        )
  104.       return code;
  105.     make_null(&istate->colorspace.array);
  106.     pop(4);
  107.     return 0;
  108. }
  109.  
  110. /* <redproc> <greenproc> <blueproc> <grayproc> setcolortransfer - */
  111. private int
  112. zsetcolortransfer(register os_ptr op)
  113. {    int code;
  114.     check_proc(op[-3]);
  115.     check_proc(op[-2]);
  116.     check_proc(op[-1]);
  117.     check_proc(*op);
  118.     check_ostack(zcolor_remap_one_ostack * 4 - 4);
  119.     check_estack(1 + zcolor_remap_one_estack * 4);
  120.     istate->transfer_procs.colored.red = op[-3];
  121.     istate->transfer_procs.colored.green = op[-2];
  122.     istate->transfer_procs.colored.blue = op[-1];
  123.     istate->transfer_procs.colored.gray = *op;
  124.     if ( (code = gs_setcolortransfer_remap(igs,
  125.             gs_mapped_transfer, gs_mapped_transfer,
  126.             gs_mapped_transfer, gs_mapped_transfer,
  127.             false)) < 0
  128.        )
  129.         return code;
  130.     /* Use osp rather than op here, because zcolor_remap_one pushes. */
  131.     pop(4);  op -= 4;
  132.     push_op_estack(zcolor_reset_transfer);
  133.     if ( (code = zcolor_remap_one(&istate->transfer_procs.colored.red,
  134.                 osp, igs->set_transfer.colored.red, igs,
  135.                 zcolor_remap_one_finish)) < 0 ||
  136.          (code = zcolor_remap_one(&istate->transfer_procs.colored.green,
  137.                 osp, igs->set_transfer.colored.green, igs,
  138.                 zcolor_remap_one_finish)) < 0 ||
  139.          (code = zcolor_remap_one(&istate->transfer_procs.colored.blue,
  140.                 osp, igs->set_transfer.colored.blue, igs,
  141.                 zcolor_remap_one_finish)) < 0
  142.        )
  143.       return code;
  144.     return zcolor_remap_one(&istate->transfer_procs.colored.gray,
  145.                 osp, igs->set_transfer.colored.gray, igs,
  146.                 zcolor_remap_one_finish);
  147. }
  148.  
  149. /* <proc> setundercolorremoval - */
  150. private int
  151. zsetundercolorremoval(register os_ptr op)
  152. {    int code;
  153.     check_proc(*op);
  154.     check_ostack(zcolor_remap_one_ostack - 1);
  155.     check_estack(1 + zcolor_remap_one_estack);
  156.     code = gs_setundercolorremoval_remap(igs, gs_mapped_transfer, false);
  157.     if ( code < 0 )
  158.         return code;
  159.     istate->undercolor_removal = *op;
  160.     pop(1);  op--;
  161.     push_op_estack(zcolor_remap_color);
  162.     return zcolor_remap_one(&istate->undercolor_removal, op,
  163.                 igs->undercolor_removal, igs,
  164.                 zcolor_remap_one_signed_finish);
  165. }
  166.  
  167. /* <width> <height> <bits/comp> <matrix> */
  168. /*    <datasrc_0> ... <datasrc_ncomp-1> true <ncomp> colorimage - */
  169. /*    <datasrc> false <ncomp> colorimage - */
  170. #ifdef DPNEXT
  171. int zimage_multiple(P2(os_ptr op, bool has_alpha));
  172. #endif
  173. private int
  174. zcolorimage(register os_ptr op)
  175. {
  176. #ifdef DPNEXT
  177.     return zimage_multiple(op, false);
  178. }
  179. /* We export zimage_multiple for alphaimage. */
  180. int
  181. zimage_multiple(os_ptr op, bool has_alpha)
  182. {
  183. #endif
  184.     int spp;            /* samples per pixel */
  185.     int npop = 7;
  186.     os_ptr procp = op - 2;
  187.     const gs_color_space *pcs;
  188.     bool multi = false;
  189.  
  190.     check_int_leu(*op, 4);        /* ncolors */
  191.     check_type(op[-1], t_boolean);    /* multiproc */
  192.     switch ( (spp = (int)(op->value.intval)) )
  193.     {
  194.     case 1:
  195.         pcs = gs_color_space_DeviceGray();
  196.         break;
  197.     case 3:
  198.         pcs = gs_color_space_DeviceRGB();
  199.         goto color;
  200.     case 4:
  201.         pcs = gs_color_space_DeviceCMYK();
  202. color:        if ( op[-1].value.boolval )    /* planar format */
  203.           {
  204. #ifdef DPNEXT
  205.             if ( has_alpha )
  206.               ++spp;
  207. #endif
  208.             npop += spp - 1;
  209.             procp -= spp - 1,
  210.             multi = true;
  211.           }
  212.         break;
  213.     default:
  214.         return_error(e_rangecheck);
  215.     }
  216.     return zimage_opaque_setup(procp, multi,
  217. #ifdef DPNEXT
  218.                    has_alpha,
  219. #endif
  220.                    pcs, npop);
  221. }
  222.  
  223. /* ------ Initialization procedure ------ */
  224.  
  225. BEGIN_OP_DEFS(zcolor1_op_defs) {
  226.     {"0currentblackgeneration", zcurrentblackgeneration},
  227.     {"0currentcmykcolor", zcurrentcmykcolor},
  228.     {"0currentcolortransfer", zcurrentcolortransfer},
  229.     {"0currentundercolorremoval", zcurrentundercolorremoval},
  230.     {"1setblackgeneration", zsetblackgeneration},
  231.     {"4setcmykcolor", zsetcmykcolor},
  232.     {"4setcolortransfer", zsetcolortransfer},
  233.     {"1setundercolorremoval", zsetundercolorremoval},
  234.     {"7colorimage", zcolorimage},
  235. END_OP_DEFS(0) }
  236.